home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Imagemaster d4.adf / apa.lzh / hlp_arexx9 < prev    next >
Text File  |  1993-08-30  |  17KB  |  722 lines

  1. \ApAssist
  2. \: - This is the Quick Help for the ARexx in IM R/t -
  3. \: ----------------------------------------------------------
  4. \:   Written by David E. Patterson
  5. \: ----------------------------------------------------------
  6.  
  7. \font topaz.font 8
  8. \tc 1
  9. \wr
  10. \lj
  11. \dd "imh_descriptor"
  12.  
  13. \index "hlp_arexx2/merge-pad"
  14. \toc "hlp_toc/toc"
  15. \help "aa_help/help
  16.  
  17. \node "mono"
  18. \title "Mono"
  19. \next "multifill"
  20. \prev ""
  21. \{ \tc 15 Mono \} - Changes a selected area to the monochrome equivalent B&W.
  22.  
  23. \nw    
  24. Usage - '\{ \tc 15 mono\} '
  25.     
  26. \{ \ts bu Sample Script\} :
  27.     
  28. 'area';
  29. '\{ \tc 15 mono\} ';
  30.     
  31. See Also: \{ \tc 15 \ts b \link "negmono" "negmono"\}
  32.     
  33. * User Interface: \{ \tc 11   Process Panel
  34.                         Special Effects
  35.                             Mono\}
  36.     
  37. \endnode
  38.  
  39.  
  40. \node "multifill"
  41. \title "Multill"
  42. \next "negcolor"
  43. \prev "mono"
  44. \{ \tc 15 Multifill \} - Creates a complex gradient fill.
  45.  
  46. Creates a complex gradient fill.  Uses colors set by the 'setmulti' function.
  47. Uses the current blend settings.
  48.  
  49. \nw    
  50. Usage - '\{ \tc 15 multifill <direction>\} '
  51.     
  52. \{ \tc 15 Direction:  0 = Two way horizontal
  53.             1 = two way vertical
  54.             2 = horizontal + center
  55.             3 = vertical + center
  56.             4 = four way
  57.             5 = four way + center\}
  58.     
  59. \{ \ts bu Sample Script\} :
  60.     
  61. 'area';
  62. '\{ \tc 15 multifill 5\} ';
  63.     
  64. * User Interface: \{ \tc 11   Process Panel
  65.                         Special Effects 
  66.                             Grad Fill\}
  67.  
  68. \endnode
  69.  
  70. \node "negcolor"
  71. \title "Negative Color"
  72. \next "negluma"
  73. \prev "multifill"
  74. \{ \tc 15 Negcolor \} - Creates a color negative of a selected area.
  75.  
  76. \nw    
  77. Usage - '\{ \tc 15 negcolor\} '
  78.     
  79. \{ \ts bu Sample Script\} :
  80.     
  81. 'area';
  82. '\{ \tc 15 negcolor\} ';
  83.     
  84. * User Interface: \{ \tc 11   Process Panel
  85.                         Special Effects
  86.                             Color Neg\}
  87.  
  88. \endnode
  89.  
  90. \node "negluma"
  91. \title "Negative Luma"
  92. \next "negmono"
  93. \prev "negcolor"
  94. \{ \tc 15 Negluma \} - Creates a luma negative of a selected area.
  95.  
  96. \nw    
  97. Usage - '\{ \tc 15 negluma\} '
  98.     
  99. \{ \ts bu Sample Script\} :
  100.       
  101. 'area';
  102. '\{ \tc 15 negluma\} ';
  103.    
  104. See Also: \{ \tc 15 \ts b \link "luma" "hlp_arexx8/luma"\}
  105.    
  106. * User Interface: \{ \tc 11    Process Panel
  107.                           Special Effects
  108.                              Luma Neg\}
  109.  
  110. \endnode
  111.  
  112. \node "negmono"
  113. \title "Negative Mono"
  114. \next "net"
  115. \prev "negluma"
  116. \{ \tc 15 Negmono \} - Creates a monochrome negative of a selected area.
  117.  
  118. \nw    
  119. Usage - '\{ \tc 15 negmono\} '
  120.     
  121. \{ \ts bu Sample Script\} :
  122.     
  123. 'area';
  124. '\{ \tc 15 negmono\} ';
  125.     
  126. See Also: \{ \tc 15 \ts b \link "mono" "hlp_arexx9/mono"\}  
  127.     
  128. * User Interface: \{ \tc 11   Process Panel
  129.                         Special Effects
  130.                            Mono Neg\}
  131.                            
  132. \endnode
  133.  
  134. \node "net"
  135. \title "3-D Net"
  136. \next "newasprimary"
  137. \prev "negmono"
  138. \{ \tc 15 Net \} - Generates '3-D' net.
  139.  
  140. \nw    
  141. Usage - '\{ \tc 15 net <hortilt> <vertilt> <spacing> <effect> <blackline>
  142.          <overlay>\} '
  143.     
  144. \{ \tc 15 Horizontal Tilt: - 100 to 100
  145. Vertical Tilt:   - 100 to 100   
  146. Spacing:             1 to 200%
  147. Effect:              0 to 100%
  148. Black Line:      0 = no, 1 = yes
  149. Over Lay:        0 = no, 1 = yes\}
  150.     
  151. \{ \ts bu Sample Script\} :  
  152.  
  153. 'area';  
  154. options results;
  155. 'askprop "Horizontal Tilt" 0 -100 100';
  156. HT = result;
  157. 'askprop "Vertical Tilt" 0 -100 100';
  158. VT = result;
  159. 'askprop "Spacing" 100 0 200';
  160. spacing = result;
  161. 'askprop Effect 50 0 100';
  162. effect = result;
  163. 'askyn "White Line" "Black Line"';
  164. line = result;
  165. 'askyn "No Overlay" "Overlay"';
  166. overlay = result;
  167. options;
  168. '\{ \tc 15 net\} ' HT VT spacing effect line overlay;
  169.     
  170. * User Interface: \{ \tc 11   Process Panel
  171.                         Special Effects
  172.                             3-D Net\}
  173.  
  174. \endnode
  175.  
  176. \node "newasprimary"
  177. \title "New as primary buffer"
  178. \next "newblend"
  179. \prev "net"
  180. \{ \tc 15 Newasprimary \} - Creates a new buffer as the primary buffer.
  181.  
  182. \nw    
  183. Usage - '\{ \tc 15 newasprimary <filename>\} '
  184.     
  185. \{ \ts bu Sample Script\} :
  186.     
  187. options results;
  188. '\{ \tc 15 newprimary imagefile\} ';
  189. buffnumber = result;
  190. options;
  191.  
  192. \endnode
  193.  
  194. \node "newblend"
  195. \title "New Blend"
  196. \next "newbuf"
  197. \prev "newasprimary"
  198. \{ \tc 15 Newblend \} - Selects a buffer as the current brush.
  199.  
  200. Makes the selected buffer the current blend.
  201.     
  202. \nw    
  203. Usage - '\{ \tc 15 newblend <buffernumber>\} '
  204.     
  205. \{ \ts bu Sample Script\} :
  206.   
  207. '\{ \tc 15 newblend 4\} ';
  208. 'area';
  209. 'merge';
  210.     
  211. \endnode
  212.  
  213. \node "newbuf"
  214. \title "New Buffer"
  215. \next "newcurrent"
  216. \prev "newblend"
  217. \{ \tc 15 Newbuf \} - Creates a new buffer
  218.  
  219. \nw    
  220. Usage - '\{ \tc 15 newbuf <Xdim> <Ydim> [name] [MASK]\} '
  221.     
  222. \{ \ts bu Sample Script\} :
  223.     
  224. '\{ \tc 15 newbuf 640 400 mynewbuffer\} ';
  225.     
  226. * User Interface: \{ \tc 11   Buffer Panel
  227.                         New Buffer\}
  228.  
  229. \endnode
  230.  
  231. \node "newcurrent"
  232. \title "New Current"
  233. \next "newsecondary"
  234. \prev "newbuf"
  235. \{ \tc 15 Newcurrent \} - Specifies a new current buffer.
  236.  
  237. \nw    
  238. Usage - '\{ \tc 15 newcurrent <#>\} '
  239.     
  240. \{ \ts bu Sample Script\} :
  241.     
  242. '\{ \tc 15 newcurrent 3\} ';
  243.     
  244. * User Interface: \{ \tc 11   Buffer Panel
  245.                          Select Primary Buffer\}
  246.  
  247.  
  248. \endnode
  249.  
  250. \node "newsecondary"
  251. \title "New Secondary"
  252. \next "newtargetted"
  253. \prev "newcurrent"
  254. \{ \tc 15 Newsecondary \} - Specifies a new secondary buffer.
  255.  
  256. \nw    
  257. Usage - '\{ \tc 15 newsecondary <#>\} '
  258.     
  259. \{ \ts bu Sample Script\} :
  260.     
  261. '\{ \tc 15 newsecondary 3\} ';
  262.     
  263. * User Interface: \{ \tc 11   Buffer Panel
  264.                         Select Secondary Buffer\}
  265.  
  266. \endnode
  267.  
  268. \node "newtargetted"
  269. \title "New Targetted"
  270. \next "obuffers"
  271. \prev "newsecondary"
  272. \{ \tc 15 Newtargetted \} - Creates a new buffer and prompts the user for its
  273. target.
  274.  
  275. \nw    
  276. Usage - '\{ \tc 15 newtargetted <xw> <yw> <name> [mask]\} '
  277.     
  278. \{ \tc 15 XW:    - image width
  279. YW     - image height
  280. Name:  Name of new buffer
  281. Mask:  mask\} 
  282.     
  283. \{ \ts bu Sample Script\} :
  284.     
  285. '\{ \tc 15 newtargetted 640 400 mynewbuff mask\} ';
  286.  
  287. \endnode
  288.  
  289. \node "obuffers"
  290. \title "Other Buffers"
  291. \next "oil"
  292. \prev "newtargettede"
  293. \{ \tc 15 Obuffers \} - Returns all buffers except the primary  buffer.
  294.  
  295. \nw    
  296. Usage - '\{ \tc 15 obuffers\} '
  297.     
  298. \{ \ts bu Sample Script\} :
  299.     
  300. options results;
  301. '\{ \tc 15 obuffers\} ';
  302. buffs = result;
  303. options;
  304. parse var buffs buffname','buffnumber;
  305.  
  306. See Also: \{ \tc 15 \ts b \link "Buffers  " "hlp_arexx5/buffers"
  307.           \link "Sbuffers " "hlp_arexx10/sbuffers"
  308.           \link "Current  " "hlp_arexx6/current"
  309.           \link "Secondary" "hlp_arexx10/secondary"\}
  310.           
  311. \endnode
  312.  
  313. \node "oil"
  314. \title "Oil"
  315. \next "oval"
  316. \prev "obuffers"
  317. \{ \tc 15 Oil \} - Gives a selected region the appearance of an oil painting.
  318.  
  319. \nw    
  320. Usage - '\{ \tc 15 oil\} '
  321.     
  322. \{ \ts bu Sample Script\} :
  323.     
  324. 'area';
  325. '\{ \tc 15 oil\} ';
  326.     
  327. * User Interface: \{ \tc 11   Process Panel
  328.                         Special Effects
  329.                             Oil Brushed\}
  330.                             
  331. \endnode
  332.  
  333. \node "oval"
  334. \title "Oval"
  335. \next "pad"
  336. \prev "oil"
  337. \{ \tc 15 Oval \} - Defines an elliptical mask region.
  338.  
  339. \nw    
  340. Usage - '\{ \tc 15 oval <Xcenter> <Ycenter> <Xradius> <Yradius>\} '
  341.     
  342. \{ \ts bu Sample Script\} :
  343.     
  344. '\{ \tc 15 oval 60 100 165 190\} ';
  345. 'contrast 90';
  346.  
  347. \endnode
  348.  
  349. \node "pad"
  350. \title "Pad"
  351. \next "padcanvas"
  352. \prev "oval"
  353. \{ \tc 15 Pad \} - Creates a new buffer that is padded at the bottom or right.
  354.  
  355. Creates a new buffer which is padded to the right or bottom so that it will
  356. be displayed in the correct aspect ration on the Amiga monitor.
  357.     
  358. \nw    
  359. Usage - '\{ \tc 15 pad [newname]\} '
  360.     
  361. \{ \ts bu Sample Script\} :
  362.     
  363. 'area';
  364. '\{ \tc 15 pad Padded\} ';
  365.     
  366. * User Intrerface: \{ \tc 11 Process Panel 
  367.                         Re-sizing and Clipping
  368.                             Pad Canvas\}
  369.  
  370. \endnode
  371.  
  372. \node "padcanvas"
  373. \title "Pad Canvas"
  374. \next "pal"
  375. \prev "pad"
  376. \{ \tc 15 Padcanvas \} - Pads the selected area to a new size.
  377.  
  378. Pads a selected area to a new size returning the buffer number.
  379.  
  380. \nw    
  381. Usage - '\{ \tc 15 padcanvas <Xsize> <Ysize> <Position> <NewName>\} '
  382.     
  383. \{ \tc 15 Position:   1 = Top Left
  384.             2 = Top Center
  385.             3 = Top Right
  386.             4 = Middle Left
  387.             5 = Middle Center
  388.             6 = Middle Right
  389.             7 = Bottom Left
  390.             8 = Bottom Center
  391.             9 = Bottom Right\}
  392.                 
  393. \{ \ts bu Sample Script\} :
  394.     
  395. 'entire';
  396. '\{ \tc 15 padcanvas 400 400 5 NewClip\} ';
  397.  
  398. * User Interface: \{ \tc 11  Process Panel
  399.                        Re-sizing and Clipping
  400.                           Pad Canvas\}
  401.  
  402. \endnode
  403.  
  404. \node "pal"
  405. \title "Pal Modes"
  406. \next "palette64"
  407. \prev "padcanvas"
  408. \{ \tc 15 Pal \} - Reports 0 for NTSC and 1 for PAL modes.
  409.  
  410. \nw    
  411. Usage - '\{ \tc 15 pal\} '
  412.     
  413. \{ \ts bu Sample Script\} :
  414.     
  415. options results;
  416. '\{ \tc 15 pal\} ';
  417. mode = result;
  418. options;
  419.  
  420. \endnode
  421.  
  422. \node "palette64"
  423. \title "Load 64 Color Palette"
  424. \next "palettedefs"
  425. \prev "pal"
  426. \{ \tc 15 Palette64/Paleteext64 \} - Loads a 64 color palette.
  427.     
  428. Loads a 64 color palette file for use in HAM-E and other small palette
  429. renders.  Only the first 64 colors of IM's 256 color palette will change.
  430.     
  431. \nw    
  432. Usage - '\{ \tc 15 palette64 <filename>\} '
  433.     
  434. \{ \ts bu Sample Script\} :
  435.        
  436. options results;
  437. 'askstring "File Name:" "64colorpalettefile"'name;
  438. name = result;
  439. options;
  440. '\{ \tc 15 palette64\} ' name;
  441.     
  442. See Also: \{ \ts b \tc 15 \link "blendload      " "hlp_arexx5/blendload"
  443.           \link "load           " "hlp_arexx8/load" 
  444.           \link "loadasblend    " "hlp_arexx8/loadasblend"
  445.           \link "loadasbrush    " "hlp_arexx8/loadasbrush"
  446.           \link "loadasprimary  " "hlp_arexx8/loadasprimary"
  447.           \link "loadassecondary" "hlp_arexx8/loadassecondary"
  448.           \link "loadimask      " "hlp_arexx8/loadimask"     
  449.           \link "loadmask       " "hlp_arexx8/loadmask"\}
  450.  
  451. \endnode 
  452.  
  453. \node "palettedefs"
  454. \title "Palette Definitions"
  455. \next "paletteext"
  456. \prev "palette64"
  457. \{ \tc 15 Palettedefs \} - Returns path and extension of a saved palette.
  458.  
  459. \nw    
  460. Usage - '\{ \tc 15 palettedefs\} '    
  461.     
  462. \{ \ts bu Sample Script\} :
  463.     
  464. options results;
  465. '\{ \tc 15 palettedefs\} ';
  466. info = result;
  467. parse var info path ','extension;
  468. options;
  469.  
  470. See also: \{ \tc 15 \ts b \link "blenddefs " "hlp_arexx5/blenddefs"
  471.           \link "imagedefs " "hlp_arexx7/imagedefs"    
  472.           \link "macrodefs " "hlp_arexx8/macrodefs"
  473.           \link "renderdefs" "hlp_arexx10/renderdefs"\}
  474.     
  475. \endnode
  476.  
  477. \node "paletteext"
  478. \title "Palette Ext"
  479. \next "paletteload"
  480. \prev "palettedefs"
  481. \{ \tc 15 Paletteext \} - Sets a new extension for 64 color palette files.
  482.  
  483. \nw    
  484. Usage - '\{ \tc 15 paletteext <newext>\} '
  485.     
  486. \{ \ts bu Sample Script\} :
  487.           
  488. options results;
  489. 'askstring "New Extension:" "pal"'name;
  490. name = result;
  491. options;
  492. '\{ \tc 15 paletteext\} ' name;         
  493.  
  494. See Also: \{ \tc 15 \ts b \link "blendext " "hlp_arexx5/blendext"
  495.           \link "imageext " "hlp_arexx7/imageext"
  496.           \link "macroext " "hlp_arexx8/macroext"
  497.           \link "renderext" "hlp_arexx10/renderext"\}
  498.  
  499. * User Interface: \{ \tc 11  Setup Panel
  500.                        Palette Ext\}
  501.  
  502. \endnode
  503.  
  504. \node "paletteload"
  505. \title "Palette Load"
  506. \next "palettepath"
  507. \prev "paletteext"
  508. \{ \tc 15 Paletteload \} - Sets a new path for loading and saving palettes.
  509.  
  510. \nw   
  511. Usage - '\{ \tc 15 paletteload <name>\} '
  512.     
  513. \{ \ts bu Sample Script\} :
  514.      
  515. options results;
  516. 'askstring "File Name:" "palettefile"'name;
  517. name = result;
  518. options;
  519. '\{ \tc 15 paletteload\} ' name;
  520.    
  521. See Also: \{ \tc 15 \ts b \link "blendload      " "hlp_arexx5/blendload"
  522.           \link "load           " "hlp_arexx8/load" 
  523.           \link "loadasblend    " "hlp_arexx8/loadasblend"
  524.           \link "loadasbrush    " "hlp_arexx8/loadasbrush"
  525.           \link "loadasprimary  " "hlp_arexx8/loadasprimary"
  526.           \link "loadassecondary" "hlp_arexx8/loadassecondary"
  527.           \link "loadimask      " "hlp_arexx8/loadimask"  
  528.           \link "loadmask       " "hlp_arexx8/loadmask"\}
  529.  
  530. \endnode
  531.  
  532. \node "palettepath"
  533. \title "Palette Path"
  534. \next "pixelize"
  535. \prev "paletteload"
  536. \{ \tc 15 Palettepath \} - Sets a new path for loading and saving palettes.
  537.  
  538. \nw    
  539. Usage - '\{ \tc 15 palettepath <newpath>\} '
  540.     
  541. \{ \ts bu Sample Script\} :
  542.      
  543. '\{ \tc 15 palettepath work:palettes\} ';
  544.     
  545. See Also: \{ \tc 15 \ts b \link "blendpath  " "hlp_arexx5/blendpath"  
  546.           \link "imagepath  " "hlp_arexx7/imagepath"
  547.           \link "macropath  " "hlp_arexx8/macropath"
  548.           \link "renderpath " "hlp_arexx10/renderpath"\}
  549.                 
  550. * User Interface: \{ \tc 11    Setup Panel
  551.                           Palette Path\}
  552.  
  553. \endnode
  554.  
  555. \node "pixelize"
  556. \title "Pixelize / Pix"
  557. \next "plugin"
  558. \prev "palettepath"
  559. \{ \tc 15 Pixelize / Pix \} - Pixelizes a selected region (Pix).
  560.  
  561. \nw    
  562. Usage - '\{ \tc 15 pixelize\} '
  563.     
  564. \{ \ts bu Sample Script\} :
  565.    
  566. 'area';
  567. '\{ \tc 15 pixelize\} ';
  568.  
  569. * User Interface: \{ \tc 11   Process Panel 
  570.                         Special Effect
  571.                             Pixelize\}
  572.  
  573. \endnode
  574.  
  575. \node "plugin"
  576. \title "Plug in"
  577. \next "poster"
  578. \prev "pixelize"
  579. \{ \tc 15 Plugin \} - Returns a single pointer in hexadecimal format.
  580.  
  581. \nw    
  582. Usage - '\{ \tc 15 plugin <buffer number> \} '
  583.     
  584. \{ \ts bu Sample Script\} :
  585.      
  586. options results; 
  587. '\{ \tc 15 plugin\} ';
  588. plugptr = result; 
  589. options; 
  590. 'backuptoundo';
  591. address command; 
  592. 'cmpi:myfile '||plugptr;
  593. address(prtnme);
  594. 'redraw';
  595.  
  596. See Also: \{ \tc 15 \ts b \link "Jackin" "hlp_arexx8/jackin"\}
  597.     
  598. \endnode
  599.  
  600. \node "poster"
  601. \title "Posterize / Poster"
  602. \next "perspect"
  603. \prev "plugin"
  604. \{ \tc 15 Posterize / Poster \} - Posterizes a selected region (Poster).
  605.  
  606. Contours a specific region to a particular set of number of levels that are
  607. fitted within the dynamic range of  the selected area.  This effect is
  608. similar to what you might see on a \{ \ts i hard rock \} or \{ \ts i
  609. psychedelic \} poster.
  610.     
  611. \nw    
  612. Usage - '\{ \tc 15 posterize <levels>\} '
  613.         '\{ \tc 15 poster <levels>\} '
  614.            
  615. \{ \tc 15 Levels: 1 to 20\}       
  616.             
  617. \{ \ts bu Sample Script\} :
  618.     
  619. 'area';
  620. '\{ \tc 15 posterize 89\} ';
  621.     
  622. * User Interface: \{ \tc 11   Process Panel 
  623.                         Special Effects
  624.                             Posterize\}
  625.  
  626. \endnode
  627.  
  628. \node "perspect"
  629. \title "Perspective Placement"
  630. \next "previousmask"
  631. \prev "poster"
  632. Perspective placement will place the secondary buffer image onto the primary
  633. buffer using a 3-dimensional perspective projection.
  634.            
  635. \nw    
  636. Usage - '\{ \tc 15 perspect [Xrotn=N.n] [Yrotn=N.n] [Zrotn=N.n]
  637.                 [Xtrans=N.n] [Ytrans=N.n] [Ztrans=N.n]
  638.                 [Xscale=N.n] [Yscale=N.n] [Zscale=N.n]\} ';
  639.                             
  640. \{ \tc 15 X Rotn      : rotation about the X axis (pitch)   (in degrees)
  641. Y Rotn      : rotation about the Y axis (yaw)
  642. Z Rotn      : rotation about the Z axis (roll)
  643. X Translate : movement left and right
  644. Y Translate : movement up and down
  645. Z Translate : depth movement into the screen
  646. X Scale     : horizontal stretching
  647. Y Scale     : vertical stretching
  648. Z Scale     : depth stretching\}
  649.        
  650. \{ \ts bu Sample Script\} :
  651.     
  652. address('IM_Port');
  653. 'autoredraw 0';
  654. '\{ \tc 15 perspect Xr=330 Yr=0 Zr=0 Xt=405 Yt=-240 Zt=656 Xs=300 Ys=300
  655.   Zs=100\} ';
  656.  do i=1 to 10
  657.    YR=i*36;
  658.    XT=405-i*80;
  659.    YT=-240+i*36;
  660.    ' perspect Yr='||YR||' Xt='||XT||' Yt='||YT;
  661.    end
  662.  'redraw';
  663. 'finish';
  664.     
  665.     
  666. * User Interface: \{ \tc 11  Compose
  667.                      Special Compositions
  668.                          Perspective Placement\} 
  669.  
  670. \endnode
  671.  
  672. \node "previousmask"
  673. \title "Previous Mask"
  674. \next "pseudo"
  675. \prev "perspect"
  676. \{ \tc 15 Previousmask \} - Selects region based on the previous mask.
  677.     
  678. Method of area selection, enabling the user to repeatedly select the same
  679. area.
  680.     
  681. \nw    
  682. Usage - '\{ \tc 15 previousmask\} '
  683.     
  684. \{ \ts bu Sample Script\} :
  685.     
  686. '\{ \tc 15 previousmask\} ';
  687. 'contrast 89';
  688.     
  689. See also: \{ \tc 15 \ts b \link "entire  " "hlp_arexx7/entire"
  690.           \link "oval    " "hlp_arexx9/oval"        
  691.           \link "rect    " "hlp_arexx10/rect"
  692.           \link "rectarea" "hlp_arexx10/rectarea"\}
  693.  
  694. \endnode
  695.  
  696. \node "pseudo"
  697. \title "Pseudo"
  698. \next ""
  699. \prev "previousmask"
  700. \{ \tc 15 Pseudo \} - Changes a selected region to pseudo color.
  701.  
  702. Changes the image colors based on the monochrome brightness.  Transforming
  703. dark pixels to blue (cold), medium pixels to green (warm), and bright pixels
  704. to red (hot).
  705.     
  706. \nw    
  707. Usage - '\{ \tc 15 pseudo\} '
  708.     
  709. \{ \ts bu Sample Script\} :
  710.     
  711. 'area';
  712. '\{ \tc 15 pseudo\} ';
  713.     
  714. See Also: \{ \tc 15 \ts b \link "False" "hlp_arexx7/false"\}
  715.     
  716. * User Interface: \{ \tc 11   Process Panel
  717.                         Special Effects
  718.                             False Color\}
  719.  
  720. \endnode
  721.  
  722.